home *** CD-ROM | disk | FTP | other *** search
- on ProfileCasts
- output = EMPTY
- repeat with temp = 1 to the number of castMembers
- if cast(temp).castType <> #empty then
- castSize = cast(temp).size / 1024
- if castSize < 1 then
- put "Cast" && temp && "is <1k" & RETURN after output
- next repeat
- end if
- put "Cast" && temp && "is" && castSize & "k" & RETURN after output
- end if
- end repeat
- return output
- end
-